home *** CD-ROM | disk | FTP | other *** search
-
- // gfxdev.h
- //
- // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
-
- #ifndef __GFXDEVICE_H__
- #define __GFXDEVICE_H__
-
- #include "stdgfx.h"
- #include "gfxerror.h"
-
- // Device Control Interface
- class DCIClass : public MYOBJECT
- {
- public :
- DCIClass ();
- virtual ~DCIClass ();
-
- virtual BOOLEAN Init () = 0;
- virtual VOID DeInit () = 0;
- }; // End of DCIClass
-
- #endif
-
-